home *** CD-ROM | disk | FTP | other *** search
- Path: darkwing.cadvision.com!usenet
- From: douglasd@cadvision.com (Doran Douglas)
- Newsgroups: comp.lang.c
- Subject: Re: Float to String
- Date: Sat, 23 Mar 1996 11:06:47 GMT
- Organization: CADVision
- Message-ID: <4j0m8a$1mem@darkwing.cadvision.com>
- References: <4is29s$h1a@dfw-ixnews6.ix.netcom.com>
- NNTP-Posting-Host: cadd53.cadvision.com
- X-Newsreader: Forte Free Agent 1.0.82
-
- scoshe@ix.netcom.com(Christopher Scott Shelton ) wrote:
-
- >Is it possible to convert a float to a string? like the itoa function.
- try strcpy 'ing the float to a string array
- eg strcpy(string, float_variable_name);
-
-
-
-